home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT Password Delay.xpl < prev    next >
Text File  |  2004-02-14  |  1KB  |  42 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Network\Security\Passwords"
  5. "NAME"="Windows WAN Password Delay"
  6. "OSVERSION"="0101011"
  7. "VERSION"="1.02"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable Password Delay"
  10. "DESCRIPTION 1"="To replicate changed passwords to other domain controllers across a WAN in the normal interval rather than immediately, check the box."
  11. "AUTHOR"="Ojatex@aol.com"
  12. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  13. "COMMENT 1"="For X-Setup program information, see http://www.xteq.com"
  14. "COMMENT 2"="Thanks to CptSiskoX for the suggested plugin."
  15.  
  16.  
  17. sP="HKLM\System\CurrentControlSet\Services\Netlogon\Parameters\AvoidPdcOnWan" 'DWORD
  18.  
  19. Sub Plugin_Initialize 
  20.   i=RegReadValue(sP)
  21.   if i="1" then SetUIElement 1,true
  22. End Sub
  23.  
  24. Sub Plugin_CheckData(ElementIndex)
  25. End Sub
  26.  
  27. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  28.  b=GetUIElement(1)
  29.  if b=true then
  30.     Call RegWriteValue(sP,"1",2)
  31.  else   
  32.     If RegValueExists(sP) then
  33.        Call RegDeleteValue(sP)
  34.     end if
  35.  end if
  36.  
  37. End Sub
  38.  
  39. Sub Plugin_Terminate 
  40. End Sub
  41.  
  42.